a:hover {
    color: #CB230D;
}

.bg-gray {
    background: #f7f7f7;
}

.indicator {
    width: 38px;
    padding: 10px;
    position: fixed;
    right: 20px;
    top: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(-50%);
    font-size: 1.4em;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}

.indicator a {
    display: block;
    height: 20px;
    margin-bottom: 5px;
    color: white;
    position: relative;
    padding: 4px;
}

.indicator a.active:after {
    box-shadow: inset 0 0 0 5px;
}

.indicator a .hover-text {
    position: absolute;
    right: 15px;
    top: 7px;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    padding-right: 15px;
}

.indicator a:hover .hover-text {
    opacity: 1;
}

.indicator a:after {
    -webkit-transition: box-shadow 0.5s ease;
    transition: box-shadow 0.5s ease;
    width: 10px;
    height: 10px;
    display: block;
    border: 1px solid;
    border-radius: 50%;
    content: '';
    position: absolute;
    margin: auto;
    top: 0;
    right: 4px;
    bottom: 0;
}

.scroll {
    position: relative;
    margin-top: 20px;
    display: inline-block;
    height: 120px;
    width: 120px;
}

.scroll:hover {
    text-decoration: none;
}

.scroll:after {
    content: '';
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -15px;
    -webkit-animation: 3s arrow infinite ease;
    animation: 3s arrow infinite ease;
}

.scroll:after {
    border-right: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.scroll-gray:after {
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.arrow {
    position: relative;
    padding-right: 15px;
}

.arrow:before,
.arrow:after {
    content: '';
    position: absolute;
    right: 0;
    top: 7px;
    width: 2px;
    height: 12px;
    background: white;
}

.arrow:before {
    transform: rotate(45deg);
    top: 15px;
}

.arrow:after {
    transform: rotate(-45deg);
}

.bi-arrow-down-circle,
.bi-arrow-up-circle {
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}

.bi-arrow-up-circle {
    color: #999;
}

@-webkit-keyframes arrow {
    0%,
    100% {
        top: 10px;
    }
    50% {
        top: 30px;
    }
}

@keyframes arrow {
    0%,
    100% {
        top: 10px;
    }
    50% {
        top: 30px;
    }
}


/* pagenation */

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-link {
    padding: 0.5rem 1rem;
    border-radius: 2px;
    color: #333;
    border: 1px solid #ebebeb;
}


/* bootstrap箭头样式 */

.carousel-control-next,
.carousel-control-prev {
    width: 40px;
}


/* main.css */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 0;
}

a:hover {
    text-decoration: none!important;
}

.ellipsis1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ellipsis2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}


/****** Main ********/

html {
    font-size: 62.5%;
    font-family: "微软雅黑", "PingFang SC", "Microsoft YaHei", Helvetica, "Helvetica Neue", Tahoma, Arial, sans-serif;
}

body {
    font-size: 12px;
    word-break: break-all;
}

.font-size16 {
    font-size: 16px;
}

.font-size14 {
    font-size: 14px;
}

.black-color {
    color: #333;
}

.primary-color {
    color: #666;
}

.secondary-color {
    color: #999;
    min-height: 18px;
}

.red-color {
    color: #CB230D;
}

.line-height25 {
    line-height: 2.5rem;
}

::-webkit-input-placeholder {
    color: #ccc;
    padding-left: 4px;
    font-size: 14px;
}

.search-box {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    padding: 40px;
    background-color: #1C1C1F;
    z-index: 9999;
}

.panel-title {
    color: #333;
}

.panel-title a {
    color: #333;
}

.gzbank-search {
    display: block;
    width: 70%;
    margin: 0 auto;
    height: 36px;
    line-height: 36px;
    padding: 4px 70px 4px 15px;
    background-color: #423D3E;
    border-radius: 4px;
    box-shadow: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    caret-color: #fff;
    color: #fff;
    border: none;
    font-size: 14px;
}

.gzbank-search::-ms-clear {
    display: none;
}

.search-icon {
    position: absolute;
    right: 15%;
    top: 0;
    width: 60px;
    text-align: center;
    height: 100%;
    line-height: 36px;
    border-left: 1px solid #1C1C1F;
    cursor: pointer;
}

.search-icon i {
    font-size: 20px;
    color: #999;
}

.search-icon:hover {
    opacity: 0.6;
}

.search-close {
    display: inline-block;
    position: absolute;
    right: 12px;
    top: 45%;
    margin-top: -12px;
    color: #999;
    font-size: 24px;
    cursor: pointer;
    width: 10%;
}

.full-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.full-back-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#fullPage-nav li .active span,
.fullPage-slidesNav .active span {
    background-color: #fff;
}

#fullPage-nav span,
.fullPage-slidesNav span {
    border-color: #fff;
}

.section {
    position: relative;
}

.section1 {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
    color: #fff;
}

.inner-top {
    background: rgba(0, 0, 0, .7);
}

.inner-content {
    width: 100%;
    height: calc(100% - 40px);
    /*background: rgba(0, 0, 0, .65);*/
}

.top-nav .navbar-nav {
    width: 100%;
    height: 40px;
    line-height: 40px;
    flex-direction: row;
}

.top-nav .navbar-nav .nav-item {
    display: inline-block;
    color: #999;
    line-height: 40px;
}

.top-nav .navbar-nav .nav-link {
    position: relative;
    padding: 0 5px;
    color: #999;
}

.top-nav .navbar-nav .nav-link:hover {
    color: #fff;
}

.top-nav .navbar-nav .nav-link.active {
    color: #fff;
}

.top-nav .navbar-nav .nav-link:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #fff;
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
}

.gzbank-logo {
    width: 160px;
}

.gzbank-nav {
    width: auto;
}

.gzbank-nav .nav-link {
    padding: 0 1rem;
    font-size: 16px;
    color: #999;
}

.gzbank-nav .nav-item.active a {
    color: #fff;
}

.gzbank-nav .nav-link:hover {
    color: #fff;
}

.table-cell {
    width: 100%;
    height: 80vh;
    display: table-cell;
    vertical-align: middle;
}

.gzbank-h1 {
    font-size: 42px;
}

.media-mt-15 {
    margin-top: 15rem;
}

.gzbank-btn {
    width: 200px;
    font-size: 14px;
    padding: 1.2rem 0;
    cursor: pointer;
    color: #fff;
    vertical-align: middle;
    background-color: #C40a0a;
}

.gzbank-btn:hover {
    color: #fff;
    outline: none;
    box-shadow: 0 5px 20px #C40a0a;
}

.gzbank-login-content {
    display: none;
    position: absolute;
    top: 38px;
    right: 0;
    width: auto;
    border: 1px solid #ddd;
    /* box-shadow: 0 0 8px #cfcfcf; */
    box-sizing: border-box;
    border-radius: 5px;
    z-index: 999;
}

.gzbank-login-content .card-title {
    width: 100%;
    letter-spacing: 1px;
}

.gzbank-login-content .card-title a {
    font-size: 16px;
    color: #333;
}

.gzbank-login-content .card-text a {
    position: relative;
    color: #999;
    font-size: 13px;
    padding-left: 4px;
    padding-right: 6px;
}

.gzbank-login-content .card-text a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #999;
    transform: scale(0.75);
    -webkit-transform: scale(0.75);
}

.gzbank-login-content .card-body {
    padding: 3rem 1.5rem;
}

.swiper-container {
    width: 100%;
    /* height: 100%; */
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-size: 10px;
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-size: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background-color: #d9d9d9;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: -0.5rem;
    left: auto;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background-color: #d9d9d9;
    top: 42%;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: -0.5rem;
    right: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
}

.gzbank-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    transition: all 1s;
}


/* .gzbank-img:hover {
    transform: scale(1.12);
} */

.gzbank-person-content p {
    font-size: 1.4rem;
    line-height: 2.5rem;
}

.gzbank-person-box {
    position: relative;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 46%;
    color: #fff;
    padding: 12px;
    background-image: linear-gradient(-180deg, hsla(0, 0%, 74.9%, 0), rgba(0, 0, 0, .78) 75%);
    box-sizing: border-box;
}

.gzbank-person-more {
    position: absolute;
    bottom: 10px;
    width: 100%;
    padding: 12px;
    left: 0;
    box-sizing: border-box;
}

.gzbank-person-title {
    font-size: 2.2rem;
}

.gzbank-person-box a {
    color: #fff;
}

.gzbank-public-item {
    position: relative;
    height: 180px;
    overflow: hidden;
    transition: transform .5s ease;
}

.public-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    transition: all 1s;
}


/* .plubic-img:hover {
    transform: scale(1.12);
} */

.gzbank-public-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    color: #fff;
    margin: auto;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .5);
}

.gzbank-public-inner a {
    color: #fff;
}

.gzbank-black-btn {
    display: inline-block;
    width: 150px;
    padding: 12px 0;
    border-radius: 2px;
    background-color: #000;
    color: #fff;
    text-align: center;
    margin-right: 10px;
}

.gzbank-black-btn img {
    width: 24px;
    padding-right: 10px;
    margin-top: -2px;
}

.gzbank-black-btn:hover {
    color: #fff;
}

.panel {
    position: relative;
    margin: 0 0 2rem;
    -webkit-box-shadow: 0 6px 15px -6px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 6px 15px -6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 15px -6px rgba(0, 0, 0, 0.1);
    transition: transform .5s ease;
    background-color: #fff;
    border-radius: 4px;
    behavior: url(ie-css3.htc);
}

.panel-link {
    text-decoration: none!important;
    color: #333;
}

.gzbank-card {
    width: 100%;
    height: 362px;
    overflow: hidden;
    transition: transform .5s ease;
}

.panel:hover,
.gzbank-card:hover,
.gzbank-public-item:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    /* box-shadow: 0 0 10px rgb(112 81 81 / 0%); */
}

.panel-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    transition: all 1s;
}


/* .panel-img img:hover {
    transform: scale(1.12);
} */

.panel-content {
    padding: 20px 15px;
    font-size: 14px;
}

.panel-text {
    position: relative;
    line-height: 25px;
    height: 75px;
}

.panel-text::after {
    position: absolute;
    content: '';
    height: 5px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: #fff;
}

.scoll-arrow {
    display: inline-block;
    position: absolute;
    width: 200px;
    height: 120px;
    bottom: 10px;
    z-index: 2;
    left: 50%;
    margin-left: -100px;
    right: 0;
}

.h1 {
    font-size: 2.8rem;
}

.gzbank-login {
    width: 16rem;
    border: none;
    box-shadow: none;
    color: #333;
    font-size: 14px;
    height: 36px;
    letter-spacing: 1px;
    background-color: #fff;
    border-radius: 5px;
}

.gzbank-login:hover,
.gzbank-login:focus {
    background: #fff;
}

.video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video source {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.pc-title p {
    letter-spacing: 1px;
}

@media screen and (min-width: 1920px) {
    .container {
        max-width: 1600px !important;
        margin: 0 auto;
    }
    .pt-5 {
        padding-top: 6rem !important;
    }
    .pb-5 {
        padding-bottom: 6rem !important;
    }
    .mt-5 {
        margin-top: 6rem !important;
    }
    .mb-5 {
        margin-bottom: 6rem !important;
    }
    .mt-4 {
        margin-top: 4rem !important;
    }
    .mb-4 {
        margin-bottom: 4rem !important;
    }
    .mr-4 {
        margin-right: 5rem !important;
    }
    .gzbank-public-item {
        height: 260px;
    }
    .panel-img {
        height: 260px;
    }
    .gzbank-nav .nav-link {
        padding: 0 2.5rem;
        font-size: 18px;
        color: #999;
    }
    .gzbank-card {
        height: 524px;
    }
    .gzbank-person-box {
        height: 54%;
    }
    #privateCarousel .carousel-inner {
        height: 566.67px !important;
    }
}

@media screen and (max-width: 1919px) and (min-width: 1440px) {
    .container {
        max-width: 1400px !important;
        margin: 0 auto;
    }
    .pt-5 {
        padding-top: 5rem !important;
    }
    .pb-5 {
        padding-bottom: 5rem !important;
    }
    .mt-5 {
        margin-top: 5rem !important;
    }
    .mb-5 {
        margin-bottom: 5rem !important;
    }
    .mr-4 {
        margin-right: 4rem !important;
    }
    .gzbank-public-item {
        height: 240px;
    }
    .panel-img {
        height: 240px;
    }
    .gzbank-card {
        height: 524px;
    }
    .gzbank-card {
        height: 480px;
    }
    .gzbank-person-box {
        height: 48%;
    }
    #privateCarousel .carousel-inner {
        height: 495.4px !important;
    }
}

@media screen and (max-width: 1440px) and (min-width: 1200px) {
    .container {
        max-width: 1140px !important;
        margin: 0 auto;
    }
    .pt-5 {
        padding-top: 3.5rem !important;
    }
    .pb-5 {
        padding-bottom: 3.5rem !important;
    }
    .mt-5 {
        margin-top: 3.5rem !important;
    }
    .mb-5 {
        margin-bottom: 3rem !important;
    }
    /* .gzbank-card {
        height: 420px;
    } */
    .gzbank-person-box {
        height: 56%;
    }
}

@media screen and (max-width: 1200px) and (min-width: 641px) {
    .pt-5 {
        padding-top: 3rem !important;
    }
    .pb-5 {
        padding-bottom: 3rem !important;
    }
    .mt-5 {
        margin-top: 3rem !important;
    }
    .mb-5 {
        margin-bottom: 3rem !important;
    }
}

@media (max-width: 640px) {
    .text-mobile-dark {
        color: #000;
        /*font-weight: bold;*/
        font-size: 1.75rem;
    }
    .inner-content {
        height: 100% !important;
    }
    .pc-nav {
        display: none !important;
    }
    .gzbank-pc-content {
        display: none !important;
    }
    .gzbank-mobile-content {
        display: block !important;
    }
    .scroll {
        display: none;
    }
    .gzbank-mobile-logo img {
        max-width: 100%;
        width: 120px;
    }
    .gzbank-mobile-btn i {
        font-size: 20px;
        color: #fff;
        cursor: pointer;
    }
    .gzbank-mobile-nav {
        display: none;
        position: absolute;
        left: 0;
        width: 100%;
        z-index: 9999;
        font-size: 16px;
        background-color: #202020;
        box-shadow: 0px 20px 20px -20px #d9d9d9;
    }
    .gzbank-mobile-nav .nav-link {
        color: #999;
        padding: 15px 20px;
    }
    .gzbank-mobile-nav .nav-link:hover {
        color: #fff;
        /* #CB230D */
    }
    .gzbank-mobile-nav .nav-link.active {
        color: #fff;
    }
    .media-mt-15 {
        margin-top: 8rem !important;
    }
    .pc-title {
        display: none !important;
    }
    .mobile-title {
        display: block !important;
    }
    .media-pc-footer {
        display: none;
    }
    .media-mobile-footer {
        display: block !important;
    }
    .media-forth-content {
        text-align: center;
    }
    .media-pc-forth {
        display: none;
    }
    .mobile-forth-content {
        display: block !important;
    }
    .media-mb {
        margin-bottom: 20px;
    }
    .indicator {
        display: none;
    }
    #privateCarousel .carousel-inner {
        height: 240px !important;
    }
    .calculate-container {
        width: 100%!important;
    }
}


/* new.css */

body {
    position: relative;
    background-color: #F7F7F7;
    height: auto;
    overflow-x: hidden;
}

.container-top {
    position: relative;
    margin-top: -30vh;
    background-color: #fff;
    padding: 25px 30px;
    min-height: 640px;
}

.gzbank-height-auto {
    min-height: auto;
}

.table-cell1 {
    height: 36vh;
}

.news-brand-nav {
    cursor: pointer;
    font-size: 14px;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

#carousel .carousel-inner {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

#privateCarousel .carousel-inner {
    width: 100%;
    height: 360px;
}

.carousel-item {
    width: 100%;
    height: 100%;
}

.carousel-indicators {
    bottom: 40px !important;
}

.carousel-indicators li {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 50%;
    opacity: 1;
}

.carousel-indicators .active {
    background-color: #CB230D;
}

.banner-right-wrapper {
    position: relative;
    width: 100%;
    height: 165px;
    margin-bottom: 20px;
}

.banner-right-wrapper:last-child {
    margin-bottom: 0;
}

.banner-right-img {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-right-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, .4); */
    background-image: linear-gradient( -180deg, hsla(0, 0%, 74.9%, 0), rgba(0, 0, 0, .78) 97%);
}

.banner-right-info p {
    font-size: 13px;
    line-height: 18px;
    color: #fff;
    text-align: justify;
    padding: 0 10px;
    max-height: 24px;
    line-height: 24px;
    position: absolute;
    bottom: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: bottom .5s;
}

.banner-right-info:hover p {
    font-size: 13px;
    line-height: 18px;
    color: #fff;
    text-align: justify;
    padding: 0 10px;
    max-height: 72px;
    overflow: hidden;
    position: absolute;
    bottom: 72px;
    transform: translateY(50%);
    opacity: 1
}

.banner-img {
    width: 100%;
    height: 100%;
}

#carousel .banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
}

#privateCarousel .banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
}

.banner-title {
    width: 100%;
    height: 40px;
    line-height: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(-180deg, transparent 13%, rgba(0, 0, 0, .65) 97%);
}

.gzbank-shadow-content {
    width: 100%;
    height: 130px;
    padding: 15px 12px;
    box-sizing: border-box;
    transition: all .2s linear;
}

.gzbank-news-item:not(:last-child) {
    border-bottom: 1px solid #e7e7e7;
}

.gzbank-news-item:hover {
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, .15);
    background: #fff;
    border-color: transparent;
}

.article-item-pic {
    display: block;
    float: left;
    width: 170px;
    height: 100%;
    overflow: hidden;
}

.article-item-pic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scaleBig {
    transition: all 1s;
}

.scaleBig:hover {
    transform: scale(1.12);
}

.article-item-info {
    float: left;
    position: relative;
    width: calc(100% - 190px);
    height: 100%;
    margin-left: 20px;
}

.article-item-description {
    font-size: 13px;
}

.article-item-title {
    color: #262626;
    margin-bottom: 10px;
    font-size: 18px;
}

.gzbank-bottom-bar {
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    line-height: 18px;
    font-size: 12px;
}

.new-title {
    padding: 12px 0;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 15px;
}

.new-right-wrapper {
    padding-left: 20px;
}

.new-right-content li {
    display: inline-block !important;
    width: 49%;
    font-size: 16px;
    line-height: 32px;
}

.new-article-list {
    padding: 0;
}

.new-article-list li {
    width: 100%;
    font-size: 14px;
    line-height: 40px;
}

.new-right-content li a,
.new-article-list li a {
    position: relative;
    display: block;
    color: #333;
    padding: 0 15px;
}

.new-article-list li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2.5px;
    display: inline-block;
    width: 4px;
    height: 5px;
    margin-right: 10px;
    vertical-align: middle;
    background-color: #000;
}

.new-right-content li:hover a,
.new-article-list li:hover a {
    color: #CB230D;
}

.news-pagination a {
    color: #CB230D;
}

.news-pagination .page-item.active .page-link {
    background-color: #CB230D;
    border-color: #CB230D;
}

.news-pagination .page-link:focus {
    outline: none;
    box-shadow: none;
}


/* 新闻详情页 */

.article-title {
    margin-bottom: 20px;
}


/* .news-detail-wrapper h1,
.news-detail-wrapper h2,
.news-detail-wrapper h3,
.news-detail-wrapper h4 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.news-detail-wrapper div {
    margin: 20px 0;
}

.news-detail-wrapper p {
    color: #666666;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 3rem;
} */


/* .news-detail-wrapper img {
    display: block;
    max-width: 100%;
    margin: 0 auto 12px;
} */

.news-bottom {
    margin-top: 100px !important;
}

.description {
    margin: 15px 0 42px;
    color: #999;
}

@media (max-width: 640px) {
    .gzbank-shadow-content {
        height: 100px !important;
    }
    .article-item-pic {
        width: 120px !important;
    }
    .article-item-info {
        width: 100% !important;
    }
    .article-item-title {
        font-size: 15px;
    }
    .container-top {
        padding-left: 15px;
        padding-right: 15px;
    }
    .new-right-wrapper {
        padding-left: 0;
    }
    .gzbank-shadow-content {
        padding: 15px 0;
    }
}


/* list.css */

.gzbank-group {
    border-right: 1px solid #d9d9d9;
    min-height: 800px;
    border-radius: 0;
}

.gzbank-group .list-group-item {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
    border: none;
    color: #999;
    border-right: 2px solid #fff;
}

.gzbank-group .list-group-item.active {
    color: #CB230D;
    border-right: 2px solid #CB230D;
    background-color: #fff;
}

.gzbank-right-group {}

.list-wrapper h3 {
    color: #B3B3AF;
    margin: 30px 0;
}

.list-wrapper p {
    margin-bottom: 20px;
    color: #666;
}

.list-wrapper ul {
    /* font-size: 14px; */
    color: #999;
}

.list-wrapper ul li {
    list-style: initial;
    margin-bottom: 40px;
}

.list-wrapper ul li div {
    margin-bottom: 12px;
    font-weight: 600;
}

@media (max-width: 640px) {
    .gzbank-group {
        flex-direction: row;
        flex-wrap: wrap;
        min-height: auto;
        margin-bottom: 30px;
    }
    .gzbank-group .list-group-item {
        width: 33%;
        display: inline-block;
    }
    .gzbank-group .list-group-item.active {
        color: #CB230D;
        border-right: none;
        border-bottom: 2px solid #CB230D;
        background-color: #fff;
    }
}


/* private.css */

#privateCarousel .carousel-indicators {
    position: absolute;
    left: 50%;
    bottom: 15px !important;
    margin-left: -90px;
    display: inline-block;
    width: 180px;
    border-radius: 24px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
}

#privateCarousel .carousel-indicators li {
    display: inline-block;
    vertical-align: middle;
}

#privateCarousel .carousel-item,
#privateCarousel .banner-img {
    width: 100%;
    height: 100%;
}

#privateCarousel.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gzbank-tabs .nav-item {
    padding: 0 40px;
}

.gzbank-tabs .nav-link {
    border: none;
    margin-bottom: 0;
    padding: 30px 0;
    font-size: 24px;
    border-bottom: 4px solid #fff;
}

.gzbank-tabs .nav-link p,
.gzbank-tabs .nav-link i {
    color: #666;
}

.gzbank-tabs .nav-link i {
    font-size: 28px;
}

.gzbank-tabs .nav-link.active,
.gzbank-tabs .nav-link:hover {
    border: none;
    border-bottom: 4px solid #CB230D;
    color: #CB230D;
}

.gzbank-tabs .nav-link:hover i,
.gzbank-tabs .nav-link:hover p,
.gzbank-tabs .nav-link.active i,
.gzbank-tabs .nav-link.active p {
    color: #CB230D;
}

.gzbank-tabs .nav-link i {
    display: block;
    margin-bottom: 15px;
}

.border-bottom {
    border-bottom: 1px solid #eaeaea !important;
}

.gzbank-ul-list {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: -1px;
}

.gzbank-ul-item {
    position: relative;
    display: block;
    float: left;
    width: 33.33%;
    height: 150px;
    padding: 20px 15px;
    border: 1px solid #eee;
    box-sizing: border-box;
    background-color: #fff;
    margin: 0px -1px -1px 0px;
}

.gzbank-ul-item:hover {
    z-index: 999;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 10px rgba(0，0, 0, .2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.gzbank-ul-item .ellipsis2 {
    max-height: 50px;
}

.gzbank-ul-item .ellipsis2:before {
    content: "";
    float: left;
    width: 5px;
    height: 50px;
}

.lg-padding {
    padding: 80px 0;
    min-height: 460px;
    box-sizing: border-box;
}

.btn-blue {
    background: #2E55D4;
    padding: 10px 30px;
    letter-spacing: 1px;
    border-radius: 5px;
}

.btn-blue .badge {
    background: #E33F52;
}

.gzbank-accordion button {
    border: none;
    outline: none;
    position: relative;
    color: #666;
    font-size: 16px;
}

.gzbank-accordion .bi-chevron-down,
.gzbank-accordion .bi-chevron-up {
    position: absolute;
    right: 0;
    top: 8px;
}

.gzbank-accordion button:hover,
.gzbank-accordion button:focus {
    color: #666;
    text-decoration: none;
    border: none;
    outline: none;
    box-shadow: none;
}

.gzbank-private-title {
    font-size: 24px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 25px;
}

.private-detail-wrapper p {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 2.5rem;
}

.private-detail-wrapper h3,
.private-detail-wrapper h4 {
    margin-top: 40px;
}

.pl-10 {
    padding-left: 10rem;
}

@media (max-width: 640px) {
    .pc-none {
        display: none;
    }
    .mobile-accordion {
        display: block !important;
    }
}


/* join.css */

.gzbank-nopic-content {
    height: 90px;
}

.gzbank-nopic-content .article-item-info {
    width: 100%;
    margin-left: 0;
    box-sizing: border-box;
}


/* 招股 */

.pd-20 {
    padding: 0 20px;
}

.gzbank-back-title {
    font-size: 24px;
    background-color: #f7f7f7;
    height: 70px;
    line-height: 70px;
    display: flex;
}

.gzbank-investor-ul {
    padding: 15px 0;
}

.gzbank-investor-ul li {
    padding: 20px;
    cursor: pointer;
}

.gzbank-investor-ul li:hover {
    background-color: #f7f7f7;
}

.gzbank-investor-ul li:not(:last-child) {
    border-bottom: 1px solid #e7e7e7;
}

.gzbank-investor-ul li a {
    color: #000;
    line-height: 26px;
}

.gzbank-investor-ul li h3 {
    margin-bottom: 18px;
}


/* 搜索页 */

.input-search-box {
    width: 100%;
    padding: 15px;
}

.input-search {
    display: block;
    width: 100%;
    height: 42px;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 4px 15px;
    box-shadow: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    caret-color: #666;
    font-size: 14px;
}

.input-search:focus,
.input-search:hover {
    border: 1px solid #999 !important;
}

.input-search-btn {
    border: none;
    outline: none;
    position: absolute;
    right: 1px;
    top: 1px;
    width: 100px;
    height: 40px;
    text-align: center;
    color: #666;
    padding-right: 10px;
    line-height: 40px;
    border-radius: 0 30px 30px 0;
    background-color: #eee;
    cursor: pointer;
    font-size: 1.6rem;
}

.input-search-btn i {
    font-size: 14px;
    color: #999;
    padding-right: 4px;
}


/* 子菜单 */

.gzbank-nav .nav-item {
    position: relative;
    padding-bottom: 15px;
}

.submenu {
    display: none;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    margin-left: -215px;
    top: 100%;
    width: 400px;
    color: #333;
    padding: 15px;
    z-index: 999;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.submenu::after {
    content: "";
    border: 10px solid transparent;
    border-bottom-color: white;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -5px;
    margin-top: -16px;
}

.mobile-submenu {
    display: none;
    width: 100%;
    color: #999;
    padding: 15px 0;
    box-sizing: border-box;
    background: #fff;
}

.mobile-submenu::after {
    display: block;
    clear: both;
    content: "";
}

.submenu-item {
    float: left;
    width: 50%;
    color: #999 !important;
    font-size: 14px;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
}

.submenu-item.active,
.submenu-item:hover {
    color: #CB230D;
}

.mobile-dropdownIcon i {
    display: inline-block;
    color: #fff;
    padding-right: 15px;
}

.display-none {
    display: none;
}

.gzbank-nav .mr-4 {
    margin-right: 0 !important;
}


/* 文章相关设置 */

.article-wrapper {
    margin-top: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    zoom: 1;
    word-break: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    text-align: left;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.article-wrapper:after,
.article-wrapper:before {
    content: '';
    display: table
}

.article-wrapper:after {
    clear: both
}

.article-wrapper>:first-child {
    margin-top: 0
}

.article-wrapper>:last-child {
    margin-bottom: 0
}

.article-wrapper p {
    margin: 0 0 20px;
    line-height: inherit
}

.article-wrapper strong {
    font-weight: 700
}

.article-wrapper code {
    margin: 0 3px;
    padding: 3px 4px;
    border: none;
    border-radius: 4px;
    background: #f6f6f6;
    color: #333;
    font-size: 13px;
    font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace
}

.article-wrapper pre {
    position: relative;
    margin: 0 0 20px;
    padding: 1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    border-radius: 4px;
    word-break: break-word;
    word-wrap: normal;
    white-space: pre;
    overflow: auto;
    -webkit-overflow-scrolling: touch
}

.article-wrapper pre::-webkit-scrollbar {
    width: 6px!important;
    height: 6px!important;
    -webkit-appearance: none;
    appearance: none
}

.article-wrapper pre::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: rgba(153, 153, 153, .75)
}

.article-wrapper pre::-webkit-scrollbar-thumb:hover {
    background: rgba(153, 153, 153, .6)
}

.article-wrapper pre::-webkit-scrollbar-thumb,
.article-wrapper pre::-webkit-scrollbar-track {
    border-radius: 4px
}

.article-wrapper pre>code {
    padding: 0;
    margin: 0;
    border-radius: 0;
    overflow: visible;
    word-break: normal
}

.article-wrapper pre,
.article-wrapper pre>code {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    background: #f6f6f6;
    color: #333;
    font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace
}

.article-wrapper ol,
.article-wrapper ul {
    margin: 0 0 20px
}

.article-wrapper ol li,
.article-wrapper ul li {
    line-height: 1.875em
}

.article-wrapper ol ol,
.article-wrapper ol p,
.article-wrapper ol pre,
.article-wrapper ol ul,
.article-wrapper ul ol,
.article-wrapper ul p,
.article-wrapper ul pre,
.article-wrapper ul ul {
    margin-bottom: 8px
}

.article-wrapper ol ul,
.article-wrapper ul ul {
    list-style-type: circle
}

.article-wrapper ol>:first-child,
.article-wrapper ul>:first-child {
    margin-top: 0
}

.article-wrapper ol>:last-child,
.article-wrapper ul>:last-child {
    margin-bottom: 0
}

.article-wrapper ol {
    list-style-type: decimal
}

.article-wrapper ul {
    list-style-type: disc
}

.article-wrapper img {
    margin: 0 auto;
    max-width: 80%;
    height: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 0;
    vertical-align: middle
}

@media only screen and (max-width:767px) {
    .article-wrapper img {
        max-width: 100%
    }
}

.article-wrapper img.zoom-in-cursor {
    cursor: -webkit-zoom-in;
    cursor: zoom-in
}

.article-wrapper table {
    display: block;
    border-collapse: collapse;
    border-spacing: 1px;
    font-size: 14px;
    color: #444;
    overflow: auto;
    max-width: 100%!important;
    width: 100%;
    border: none;
    line-height: inherit;
    word-break: keep-all;
    margin: 0 0 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch
}

.article-wrapper table::-webkit-scrollbar {
    width: 6px!important;
    height: 6px!important;
    -webkit-appearance: none;
    appearance: none
}

.article-wrapper table::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: rgba(153, 153, 153, .75)
}

.article-wrapper table::-webkit-scrollbar-thumb:hover {
    background: rgba(153, 153, 153, .6)
}

.article-wrapper table::-webkit-scrollbar-thumb,
.article-wrapper table::-webkit-scrollbar-track {
    border-radius: 4px
}

.article-wrapper table thead {
    text-align: left
}

.article-wrapper table th,
.article-wrapper table thead {
    background: #f8f8f8
}

.article-wrapper table td,
.article-wrapper table th {
    padding: 4px 8px;
    border: 1px solid #ddd
}

.article-wrapper table tr {
    background-color: #fff
}

.article-wrapper table tr:nth-child(2n) {
    background-color: #f8f8f8
}

.article-wrapper blockquote {
    position: relative;
    margin: 0 0 20px;
    padding: 20px;
    border-left: 6px solid #e6e6e6;
    font-style: normal;
    font-weight: 400;
    word-break: break-word
}

.article-wrapper blockquote>:first-child {
    margin-top: 0
}

.article-wrapper blockquote>:last-child {
    margin-bottom: 0
}

.article-wrapper blockquote code,
.article-wrapper blockquote pre {
    background-color: #eee
}

.article-wrapper h1,
.article-wrapper h2,
.article-wrapper h3,
.article-wrapper h4,
.article-wrapper h5,
.article-wrapper h6 {
    font-weight: 600;
    line-height: 1.8;
    margin: 22px 0 16px;
    padding: 0;
    border: none
}

.article-wrapper h1 {
    font-size: 26px
}

.article-wrapper h2 {
    font-size: 24px
}

.article-wrapper h3 {
    font-size: 22px
}

.article-wrapper h4 {
    font-size: 20px
}

.article-wrapper h5 {
    font-size: 18px
}

.article-wrapper h6 {
    font-size: 16px
}

.article-wrapper video {
    max-width: 100%
}

.article-wrapper hr {
    height: 0;
    border: none;
    border-top: 1px solid #eee;
    background: 0 0;
    margin: 0 0 20px;
    zoom: 1
}

.article-wrapper hr:after,
.article-wrapper hr:before {
    content: '';
    display: table
}

.article-wrapper hr:after {
    clear: both
}


/* 电子银行新增css */

.gzbank-platform {
    width: 70%;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    padding: 30px;
    margin: 20px auto;
    box-shadow: 0 0 20px #fdfdfd;
}

.gzbank-platform-title {
    position: relative;
    display: inline-block;
    font-size: 18px;
    padding-bottom: 15px;
}

.gzbank-platform-title::after {
    content: "";
    position: absolute;
    top: 100%;
    height: 1px;
    width: 50%;
    left: 25%;
    background-color: #333;
}

.gzbank-platform-content {
    color: #999;
    text-indent: 14px;
    margin: 20px auto;
}

.gzbank-platform-more {
    padding: 5px 20px;
    border-radius: 15px;
    background-color: #FDFDFD;
    border: 1px solid #f2f2f2;
    color: #999;
}

.pc-platform {
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.gzbank-platform-img {
    width: 56%;
    margin: 0 auto;
}


/* end */


/* 新增左右结构的电子银行 */

.gzbank-text-contanier {
    padding: 0 30px;
}

.gzbank-img-container {
    position: relative;
}

.gzbank-border-img {
    position: relative;
    display: inline-block;
    width: calc(100% - 24px);
    height: 300px;
    object-fit: cover;
    margin: 12px;
}

.outline-right,
.outline-left,
.outline-top,
.outline-bottom {
    position: absolute;
    width: 30%;
    height: 66px;
    background-color: transparent;
    z-index: 999;
}

.outline-right {
    right: 0;
    top: 0;
    border-right: 12px solid #F4F4F4;
    border-top: 12px solid #F4F4F4;
}

.outline-left {
    bottom: 0;
    left: 0;
    border-left: 2px solid #e7e7e7;
    border-bottom: 2px solid #e7e7e7;
}

.outline-top {
    top: 0;
    left: 0;
    border-top: 2px solid #e7e7e7;
    border-left: 2px solid #e7e7e7;
}

.outline-bottom {
    bottom: 0;
    right: 0;
    border-right: 12px solid #F4F4F4;
    border-bottom: 12px solid #F4F4F4;
}

.gzbank-subtitle {
    border-bottom: 1px solid #EAEAEA;
}

.gzbank-subtitle h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.gzbank-subtitle h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background-color: #333;
}


/* #end */

.logo-box {
    border-right: 1px solid #505050;
}


/* 计算器 */

.calculate-container {
    width: 60%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 4px;
}

#calculateTab {
    border: none;
}

#calculateTab .nav-item {
    width: 25%;
}

#calculateTab .nav-link {
    width: 100%;
    padding: 10px;
    text-align: center;
    color: #333;
    font-size: 14px;
    box-sizing: border-box;
    border: 1px solid #d9d9d9;
}

#calculateTab .nav-link.active {
    color: #CB230D;
}

#calculateTabContent {
    position: relative;
    width: 100%;
    padding: 30px;
    border: 1px solid #d9d9d9;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

#calculateTabContent .form-group {
    position: relative;
    margin-bottom: 18px;
}

#calculateTabContent .col-form-label {
    font-size: 14px;
}

#calculateTabContent .form-control {
    height: calc(2em + 1rem + 2px);
    padding: .5rem 3.5rem .5rem 1rem;
}

#calculateTabContent .date-control {
    padding: .5rem 0.5rem 0.5rem 1rem;
}

.btnCalculator {
    /* position: absolute;
    right: 0;
    bottom: 100px; */
    width: 100%;
    padding: 8px 15px;
    border: 1px solid #D9d9d9;
    background-color: #f3f3f3;
    color: #CB230D;
    margin-bottom: 10px;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    box-shadow: none;
}

.btnCalculator:hover {
    box-shadow: none;
}

.unit {
    position: absolute;
    right: 0.75rem;
    bottom: 0.5rem;
}


/*  */

.btn-Android {
    /*border-radius: 20px;*/
    background-color: #fff;
    color: #333;
}

.btn-Android:hover {
    color: #CB230D;
}

.qrcode-box {
    position: absolute;
    bottom: 100%;
    left: 0;
    border: 6px solid #fff;
    border-radius: 2px;
    display: none;
    z-index: 9;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.footer-qrcode:hover .qrcode-box {
    display: block;
}